type hash/fnv.sum64

13 uses

	hash/fnv (current package)
		fnv.go#L25: 	sum64   uint64
		fnv.go#L59: 	var s sum64 = offset64
		fnv.go#L90: func (s *sum64) Reset()   { *s = offset64 }
		fnv.go#L97: func (s *sum64) Sum64() uint64  { return uint64(*s) }
		fnv.go#L120: func (s *sum64) Write(data []byte) (int, error) {
		fnv.go#L124: 		hash ^= sum64(c)
		fnv.go#L168: func (s *sum64) Size() int   { return 8 }
		fnv.go#L175: func (s *sum64) BlockSize() int   { return 1 }
		fnv.go#L190: func (s *sum64) Sum(in []byte) []byte {
		fnv.go#L242: func (s *sum64) AppendBinary(b []byte) ([]byte, error) {
		fnv.go#L248: func (s *sum64) MarshalBinary() ([]byte, error) {
		fnv.go#L306: func (s *sum64) UnmarshalBinary(b []byte) error {
		fnv.go#L313: 	*s = sum64(byteorder.BEUint64(b[4:]))